home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / tool_inc.zip / APPENDC.INC < prev    next >
Text File  |  1989-06-02  |  701b  |  32 lines

  1.  
  2. (*
  3.  * Copyright 1987, 1989 Samuel H. Smith;  All rights reserved
  4.  *
  5.  * This is a component of the ProDoor System.
  6.  * Do not distribute modified versions without my permission.
  7.  * Do not remove or alter this notice or any other copyright notice.
  8.  * If you use this in your own program you must distribute source code.
  9.  * Do not use any of this in a commercial product.
  10.  *
  11.  *)
  12.  
  13. (***
  14. procedure appendc(var line: string; c: char);
  15. begin
  16.    inc(line[0]);
  17.    line[length(line)] := c;
  18. end;
  19.  
  20. procedure appends(var line: string; s: anystring);
  21. begin
  22.    line := line + s;
  23. end;
  24. ***)
  25.  
  26. procedure vappends(var line: varstring; s: anystring);
  27. begin
  28.    savestr(line,line^ + s);
  29. end;
  30.  
  31.  
  32.